home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
enigma
/
earcd
/
comm
/
comm2
/
pager.lha
/
PagE!r
/
PagE!r_player
< prev
next >
Wrap
Text File
|
1996-11-09
|
978b
|
26 lines
/*************************************************************************/
/* PagE!r_player v1.0 by Morpheus */
/*************************************************************************/
/* playcmd : player command + path */
/* playwhat: name of the sample/mod/whatever that will be played + path */
/* play_nr : maximum number of times the sample/mod will be played */
/* pause : delay between samples/mods in 0.01 secs */
/*************************************************************************/
playcmd = 'C:play16'
playwhat = 'Doors:PagE!r/PagE!r.sound'
play_nr = 5
pause = 200
/********************************* Script ********************************/
options results
parse arg node
port='PAGERPORT'||node
do 50 while ~show('P',port)
call delay(10)
end
i=0
do while i<play_nr&show('P',port)
address command playcmd||' '||playwhat
call delay(pause)
i=i+1
end
exit